9f1ea98df1d0ca1712546e9040fb1897f45ba17f,community/kernel/src/test/java/org/neo4j/unsafe/impl/batchimport/input/csv/CsvInputBatchImportIT.java,CsvInputBatchImportIT,buildUpExpectedData,#List#List#Map#Map#Map#Map#Map#,400
Before Change
typeCounts.get( endNodeLabelName ).incrementAndGet();
}
}
for ( String endNodeLabelName : endNode.labels() )
{
relationshipCounts.get( null ).get( null ).get( endNodeLabelName ).incrementAndGet();
relationshipCounts.get( null ).get( relationship.type() ).get( endNodeLabelName ).incrementAndGet();
After Change
typeCounts.get( endNodeLabelName ).incrementAndGet();
}
}
for ( String endNodeLabelName : asSet( endNode.labels() ) )
{
relationshipCounts.get( null ).get( null ).get( endNodeLabelName ).incrementAndGet();
relationshipCounts.get( null ).get( relationship.type() ).get( endNodeLabelName ).incrementAndGet();